home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-11-22 | 1.5 KB | 59 lines | [TEXT/ttxt] |
- --<<<
- module DTK
- uses ScriptX
-
- exports DTKCastTranslator
- exports instance variables
- outputStream, -- Where author wants data to go
- container, -- The Container to save to
- dtk -- The DTK running this translator
-
- exports DTKScoreTranslator
- exports instance variables
- outputStream, -- Where author wants data to go
- container, -- The Container to save to
- dtk, -- The DTK running this translator
- castList -- The list of converted cast members
-
- exports DTKCastMemberToPresenter
- exports instance variables
- patternCache,
- shapeClass,
- bitmapClass,
- textClass,
- videoClass
-
- exports DTKCastMemberToStencil
- exports DTKCastMemberToAudioStream
-
- end
- module DTKAssemble
- uses scriptX, DTK
- end
- in module DTKAssemble
-
- (
- local ld := new loader
- local devgroup := getgroup ld "dtk"
- local devunit := getLoadableUnit devgroup "directordriver"
- local devid := loadmodule ld devgroup devunit
- print (loaderValue ld devid)
-
- local devunit2 := getLoadableUnit devgroup "dtk"
- local devid2 := loadmodule ld devgroup devunit2
- print (loaderValue ld devid2)
- )
-
- global dtktc
-
- global sourceDir := spawn theStartDir "DTK.sx"
- global dtkModule := GetModule @DTK
-
- --fileIn sourceDir name:"casttran.sx" module:dtkModule
- --fileIn sourceDir name:"caststen.sx" module:dtkModule
- --fileIn sourceDir name:"castpres.sx" module:dtkModule
- --fileIn sourceDir name:"castaud.sx" module:dtkModule
- --
- --fileIn sourceDir name:"scortran.sx" module:dtkModule
- -->>>
-